home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 187_01 / cant.c < prev    next >
C/C++ Source or Header  |  1985-12-28  |  600b  |  19 lines

  1. /*@*****************************************************/
  2. /*@                                                    */
  3. /*@ cant - tell user that we cannot open given file.   */
  4. /*@        Returns to caller.                          */
  5. /*@                                                    */
  6. /*@   Usage:     cant(filename);                       */
  7. /*@       where filename is an ASCIIZ string.          */
  8. /*@                                                    */
  9. /*@*****************************************************/
  10.  
  11. cant(s)
  12. char *s;
  13. {
  14.     puts(s);
  15.     puts(": cannot open\n");
  16. }
  17.  
  18.  
  19.